home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 3 / Amiga Tools 3.iso / rexx / togglefastedit.pvrx < prev    next >
Text File  |  1991-07-15  |  367b  |  16 lines

  1. /* ToggleFastEdit.pvrx---toggle FastEdit mode on or off.
  2.    Copyright © 1991 by Stylus, Inc.
  3.    (requires v. 2.X.31 or greater) */
  4.  
  5. /* Always do this for a ProVector AREXX macro */
  6. 'Lock'
  7. if RC ~= 0 then exit
  8.  
  9. 'GetScreenFormat' Var
  10. if Var.FastEdit=False then Var.FastEdit=True
  11. else Var.FastEdit=False
  12. 'SetScreenFormat' Var
  13.  
  14. /* All done!  Unlock ProVector */
  15. 'UnLock'
  16.